* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
  }

nav{
    position:fixed;
    top: 0%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-content: center;
    display: flex;
    flex-direction: row;
    background: rgb(0,212,255);
    background: linear-gradient(0deg, rgba(0,212,255,0.022934173669467817) 0%, rgba(0,0,0,1) 100%);
    padding-right: 30px;
  }
  .header img{
    width: 100%;
  }
  
  
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 2%;
    overflow: hidden;
    background:transparent;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #111;
  }
  
  .active {
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
  }
  
  .active2 {
    background-color:crimson;
  }
  
  
  
  
  .menu {
    margin: -10px;
      
      
  }
  
  
  .menu ul li {
      display: inline
  }
  
  .menu ul li a {
      color: aliceblue;
      text-decoration: none;
      font-size: 20px;
      text-transform: uppercase;
      /* padding: 20px; */
  }
  
  .menu ul li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 20px;
  }






  /* nav */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    margin-top: 5%;
}

#search-bar {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
}

.suggested-images {
    /* display: flex;
    flex-wrap: wrap;*/
    justify-content: center;
    display: grid;
  padding-top: 30px;
  grid-template-columns: auto auto auto;
  grid-column-gap: 10px;
}

.suggested-item {
    width: calc(16.666% - 20px);
    margin: 10px;
    overflow: hidden;
}

.suggested-images img {
    width: 300px;
    height: 30vh;
    border-radius: 8px;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  margin-top: 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 80px; 
  padding-right: 2px;
}

.footer-section {
  flex: 1;
  margin: 0 10px;
}

.footer-section h3 {
  margin: 0;
  font-size: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding-left: 2%;
  margin-right: 2%;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -7px;
}

.footer-section li {
  margin-bottom: 5px;
  font-size: 16px;
  
}


.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-logo img {
  width: 150px;
}

